From a9e4dddad582d61871076b4310f2c99009afe0db Mon Sep 17 00:00:00 2001 From: Wollnashorn Date: Wed, 14 Jun 2023 11:21:22 +0200 Subject: video_core: Fix default anisotropic heuristic --- src/video_core/textures/texture.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp index b46dce096..1daa2d488 100644 --- a/src/video_core/textures/texture.cpp +++ b/src/video_core/textures/texture.cpp @@ -62,10 +62,10 @@ std::array TSCEntry::BorderColor() const noexcept { } float TSCEntry::MaxAnisotropy() const noexcept { - const bool suitable_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering - ? mipmap_filter != TextureMipmapFilter::None - : mipmap_filter != TextureMipmapFilter::Linear; - if (max_anisotropy == 0 && (depth_compare_enabled.Value() || !suitable_mipmap_filter)) { + const bool unsupported_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering + ? mipmap_filter == TextureMipmapFilter::None + : mipmap_filter != TextureMipmapFilter::Linear; + if (max_anisotropy == 0 && (depth_compare_enabled.Value() || unsupported_mipmap_filter)) { return 1.0f; } const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); -- cgit v1.2.3